home *** CD-ROM | disk | FTP | other *** search
/ ...taking it to the Macs! / ...taking it to the Macs!.iso / Extras / ActiveX Mac SDK / ActiveX SDK / Sample Controls / PowerPlant View / Directory Table ƒ / CFixedScroller.h < prev   
Encoding:
C/C++ Source or Header  |  1996-10-02  |  369 b   |  19 lines  |  [TEXT/CWIE]

  1. #pragma once
  2.  
  3. #include <LScroller.h>
  4.  
  5. class CFixedScroller : public LScroller
  6. {
  7. public:
  8.     enum { class_ID = 'fSCL' };
  9.     
  10.     static CFixedScroller* CreateFromStream(LStream *inStream);
  11.     
  12.                             CFixedScroller(LStream *inStream);
  13.                             
  14.         virtual                ~CFixedScroller() {}
  15.         
  16.         virtual void        VertScroll(const Int16 inPart);
  17.         virtual void        HorizScroll(const Int16 inPart);
  18. };
  19.